home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / read.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  1KB  |  55 lines

  1. /* 
  2.  * read.c --
  3.  *
  4.  *    Procedure to map from Unix read system call to Sprite.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: read.c,v 1.1 88/06/19 14:31:51 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16. #include "compatInt.h"
  17.  
  18.  
  19. /*
  20.  *----------------------------------------------------------------------
  21.  *
  22.  * read --
  23.  *
  24.  *    Procedure to map from Unix read system call to Sprite Fs_Read.
  25.  *
  26.  * Results:
  27.  *    UNIX_ERROR is returned upon error, with the actual error code
  28.  *    stored in errno.  Upon success, the number of bytes actually
  29.  *    read is returned.
  30.  *
  31.  * Side effects:
  32.  *    The buffer is filled with the number of bytes indicated by
  33.  *    the length parameter.  
  34.  *
  35.  *----------------------------------------------------------------------
  36.  */
  37.  
  38. int
  39. read(descriptor, buffer, numBytes)
  40.     int descriptor;        /* descriptor for stream to read */
  41.     char *buffer;        /* pointer to buffer area */
  42.     int numBytes;        /* number of bytes to read */
  43. {
  44.     ReturnStatus status;    /* result returned by Fs_Read */
  45.     int amountRead;        /* place to hold number of bytes read */
  46.  
  47.     status = Fs_Read(descriptor, numBytes, buffer, &amountRead);
  48.     if (status != SUCCESS) {
  49.     errno = Compat_MapCode(status);
  50.     return(UNIX_ERROR);
  51.     } else {
  52.     return(amountRead);
  53.     }
  54. }
  55.